home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / GameKit / Makefiles / lib / Makefile.targets < prev    next >
Makefile  |  1995-06-12  |  2KB  |  38 lines

  1. #
  2. #  NeXT common include file for Internal Makefiles
  3. #  Copyright 1987, 1991, NeXT Computer, Inc.
  4. #
  5. #  Maintained by Doug Wiebe.
  6. #
  7. #  This Makefile has the rules used to build libraries.
  8. #
  9.  
  10. # a little doc for when the "help" target is made
  11. .DEFAULT help:
  12.     @if (test "$<"); then        \
  13.         echo 'ERROR: Unrecognized Makefile target "$<"';    \
  14.     fi
  15.     @echo '  install        install the library and all associated files';\
  16.     echo '  installsrc        install the source of the library';\
  17.     echo '  optimized_install    install the optimized library';\
  18.     echo '  profile_install    install the profile library';\
  19.     echo '  debug_install        install the debugging library';\
  20.     echo '  $(NAME)        make local copies of the library';\
  21.     echo '  optimized        make the optimized copy of the library';\
  22.     echo '  debug            make the debugging copy of the library';\
  23.     echo '  profile        make the profiling copy of the library';\
  24.     echo '  ofiles        make the library .o files';\
  25.     echo '  optimized_ofiles    make the optimized library .o files';\
  26.     echo '  debug_ofiles        make the debugging library .o files';\
  27.     echo '  profile_ofiles    make the profiling library .o files';\
  28.     echo '  clean            remove garbage files';\
  29.     echo '  tidy            remove even more garbage files';\
  30.     echo '  depend        update Makefile dependencies on include files';\
  31.     echo '  diff            diffs current source against installed source';\
  32.     echo '  lint            lint all the source';\
  33.     echo '  print            print out all the source files';\
  34.     echo '  size            get the size of all object files';\
  35.     echo '  tags            run ctags on the source';\
  36.     echo '  wc            get the line, word, and byte count of the source'
  37.  
  38.